system date - vertaling naar duits
Diclib.com
Woordenboek ChatGPT
Voer een woord of zin in in een taal naar keuze 👆
Taal:

Vertaling en analyse van woorden door kunstmatige intelligentie ChatGPT

Op deze pagina kunt u een gedetailleerde analyse krijgen van een woord of zin, geproduceerd met behulp van de beste kunstmatige intelligentietechnologie tot nu toe:

  • hoe het woord wordt gebruikt
  • gebruiksfrequentie
  • het wordt vaker gebruikt in mondelinge of schriftelijke toespraken
  • opties voor woordvertaling
  • Gebruiksvoorbeelden (meerdere zinnen met vertaling)
  • etymologie

system date - vertaling naar duits

COMPUTER SYSTEM'S NOTION OF THE PASSING OF TIME
Date (computing); System clock; Time (computing); DATE (command); Date (command); System date; System Time; System clocks; DATE (DOS command); DATE (CP/M command)
  • date]]'' command

system date         
Systemdatum, das Datum das in der Computeruhr festgelegt ist
system time         
Systemzeit, die Zeit die in der Systemuhr festgelegt ist
expiration date         
  • tag]] sealing a bag of [[hot dog bun]]s displays a ''best before'' date of February 29.
  • UK]] displays a use by date of 26 December pressed into the foil to indicate that the food may spoil and be unsafe after that date.
PREVIOUSLY DETERMINED DATE AFTER WHICH SOMETHING SHOULD NO LONGER BE USED
Best before; Sell by date; Expiry date; Freshness date; Use by; Use by date; Expiry; Sell-by date; Best before date; Best by; Expiry Date; Sell by; Draft:Expiration date; Product expiration
Fälligkeitstermin; Verfallsdatum

Definitie

sell-by date
¦ noun a date marked on a perishable product indicating the recommended time by which it should be sold.
?informal a time after which something or someone is no longer considered desirable or effective.

Wikipedia

System time

In computer science and computer programming, system time represents a computer system's notion of the passage of time. In this sense, time also includes the passing of days on the calendar.

System time is measured by a system clock, which is typically implemented as a simple count of the number of ticks that have transpired since some arbitrary starting date, called the epoch. For example, Unix and POSIX-compliant systems encode system time ("Unix time") as the number of seconds elapsed since the start of the Unix epoch at 1 January 1970 00:00:00 UT, with exceptions for leap seconds. Systems that implement the 32-bit and 64-bit versions of the Windows API, such as Windows 9x and Windows NT, provide the system time as both SYSTEMTIME, represented as a year/month/day/hour/minute/second/milliseconds value, and FILETIME, represented as a count of the number of 100-nanosecond ticks since 1 January 1601 00:00:00 UT as reckoned in the proleptic Gregorian calendar.

System time can be converted into calendar time, which is a form more suitable for human comprehension. For example, the Unix system time 1000000000 seconds since the beginning of the epoch translates into the calendar time 9 September 2001 01:46:40 UT. Library subroutines that handle such conversions may also deal with adjustments for time zones, daylight saving time (DST), leap seconds, and the user's locale settings. Library routines are also generally provided that convert calendar times into system times.